home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
011
/
ddosaid.arc
/
RESUME.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-12-12
|
1KB
|
40 lines
PAGE 62,132
Title DoubleDOS Utility: Resume
CR EQU 0Dh ;ASCII Carriage Return
LF EQU 0Ah ;ASCII Line Feed
$ EQU 24h ;String termination charachter
Dos_Call EQU 21h
Terminate_Program EQU 00h
Put_String EQU 09h
DD_Menu_Control EQU 0E0h
Resume_Invisible EQU 73h
Code_Seg SEGMENT
ASSUME cs:Code_Seg,ds:Code_Seg,es:Code_Seg
ORG 0100h
Main PROC NEAR
mov ah,Put_String
mov dx,OFFSET Resuming
int Dos_Call
mov ah,DD_Menu_Control
mov al,Resume_Invisible
int Dos_Call
mov ah,Terminate_Program
int Dos_Call
Resuming DB CR,LF,'DoubleDOS Utility - by Chris M. Magyar'
DB ' - 12/12/85'
DB CR,LF
DB CR,LF,'Resuming Invisible Partition Now.'
DB CR,LF,$
Main ENDP
Code_Seg ENDS
END Main